{"nbformat":4,"nbformat_minor":0,"metadata":{"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.6.5"},"colab":{"name":"2.3 Keras Tooling.ipynb","provenance":[{"file_id":"1sP5ILsdUQlbzPCOlPQpSd1Zw0fZ2xyX5","timestamp":1573397192284}],"collapsed_sections":[]}},"cells":[{"cell_type":"markdown","metadata":{"id":"71bIHkK_PxZN","colab_type":"text"},"source":["## Introduction\n","\n","In this notebook, we will:\n","\n","1. Get more practice manipulating our training data to fit our neural networks\n","2. Learn how to use some of the tooling in the Keras ecosystem\n","3. Learn how to debug issues with our neural networks\n"]},{"cell_type":"code","metadata":{"ExecuteTime":{"end_time":"2019-01-13T21:10:06.123871Z","start_time":"2019-01-13T21:10:00.647687Z"},"id":"Sn5PZP-3PxZY","colab_type":"code","outputId":"e5a04b90-e3d4-493b-896b-96a9505204dc","executionInfo":{"status":"error","timestamp":1572717151126,"user_tz":240,"elapsed":4593,"user":{"displayName":"Brian","photoUrl":"https://lh4.googleusercontent.com/-y5a64nLFbc4/AAAAAAAAAAI/AAAAAAAAAXs/4RRMVlUcGtY/s64/photo.jpg","userId":"11680685692091329827"}},"colab":{"base_uri":"https://localhost:8080/","height":405}},"source":["%tensorflow_version 1.x\n","import numpy as np\n","\n","from keras.models import Sequential\n","from keras.layers import Dense, Activation\n","from keras.datasets import mnist\n","from keras.optimizers import Adam\n","from keras.utils import to_categorical\n","from keras.callbacks import TensorBoard\n","\n","from keras_tqdm import TQDMNotebookCallback"],"execution_count":0,"outputs":[{"output_type":"stream","text":["Using TensorFlow backend.\n"],"name":"stderr"},{"output_type":"display_data","data":{"text/html":["
\n","The default version of TensorFlow in Colab will soon switch to TensorFlow 2.x.
\n","We recommend you upgrade now \n","or ensure your notebook will continue to use TensorFlow 1.x via the %tensorflow_version 1.x
magic:\n","more info.